From: Lars Ingebrigtsen Date: Mon, 14 Oct 2019 03:19:37 +0000 (+0200) Subject: Clarify message about newer source file X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~19^2~1477 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=eac531b760aa805c293339eba78e58b5b89fa211;p=emacs.git Clarify message about newer source file * src/lread.c (Fload): Mention which file was actually used instead of just saying that the .el is newer than the .elc (bug#10637). --- diff --git a/src/lread.c b/src/lread.c index 1098190ae7c..4ea62029727 100644 --- a/src/lread.c +++ b/src/lread.c @@ -1364,7 +1364,7 @@ Return t if the file exists and loads successfully. */) { Lisp_Object msg_file; msg_file = Fsubstring (found, make_fixnum (0), make_fixnum (-1)); - message_with_string ("Source file `%s' newer than byte-compiled file", + message_with_string ("Source file `%s' newer than byte-compiled file; using older file", msg_file, 1); } }